home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Freeware / Adobe Air 1.5 / AdobeAIRInstaller.exe / setup.swf / scripts / mx / states / Transition.as < prev   
Encoding:
Text File  |  2008-10-29  |  452 b   |  25 lines

  1. package mx.states
  2. {
  3.    import mx.core.mx_internal;
  4.    import mx.effects.IEffect;
  5.    
  6.    use namespace mx_internal;
  7.    
  8.    public class Transition
  9.    {
  10.       mx_internal static const VERSION:String = "3.0.0.0";
  11.       
  12.       public var effect:IEffect;
  13.       
  14.       public var toState:String = "*";
  15.       
  16.       public var fromState:String = "*";
  17.       
  18.       public function Transition()
  19.       {
  20.          super();
  21.       }
  22.    }
  23. }
  24.  
  25.